Embedding Style Sheets

To embed a style sheet in an HTML page, click the toolbutton shown on the left to open the Style Sheet Link Wizard [CTRL+L]. Select the files or files in folders that you want to embed the style sheet in.

Select the Insert <style> block option, and choose other options (if desired) to back up HTML files or remove existing style blocks or style sheet links.

Note: it is generally preferable to link an external style sheet. Use the embed method when you wish to apply styles only to a single page.

Example

<head>
<title>Embedding Style Sheets</title>
<style><!--
P {font-family: sans-serif; font-size: 10px}
--></style>
</head>